#
# Makefile for Atheros tools.
#
CROSS:=$(TOOLPREFIX)

CC=$(CROSS)gcc

ALL=watchdog 

all:	${ALL}

watchdog: watchdog.c
	${CC} -o watchdog watchdog.c

clean: 
	rm -f ${ALL} 
